home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getpriority.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  788b  |  42 lines

  1. /* 
  2.  * getpriority.c --
  3.  *
  4.  *    Procedure to map from Unix getpriority system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: getpriority.c,v 1.2 88/07/29 17:39:30 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "compatInt.h"
  16.  
  17.  
  18. /*
  19.  *----------------------------------------------------------------------
  20.  *
  21.  * getpriority --
  22.  *
  23.  *    Procedure to map from Unix getpriority system call to Sprite 
  24.  *    Proc_GetPriority. 
  25.  *
  26.  * Results:
  27.  *    Always return 0 for now.
  28.  *
  29.  * Side effects:
  30.  *    None.
  31.  *
  32.  *----------------------------------------------------------------------
  33.  */
  34.  
  35.     /* ARGSUSED */
  36. int
  37. getpriority(which, who)
  38.     int    which, who;
  39. {
  40.     return(0);
  41. }
  42.